projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6165587
)
(Fset_buffer_multibyte): Pay attention to the buffer
author
Kenichi Handa
<handa@m17n.org>
Tue, 25 Feb 2003 02:24:53 +0000
(
02:24
+0000)
committer
Kenichi Handa
<handa@m17n.org>
Tue, 25 Feb 2003 02:24:53 +0000
(
02:24
+0000)
process only when "subprocesses" is defined.
src/buffer.c
patch
|
blob
|
history
diff --git
a/src/buffer.c
b/src/buffer.c
index 77aa61d45ba76ee11fe49753aa778c2f4cb08a1c..bfb234773eab8bec6ff8ffaacd125771160a49a9 100644
(file)
--- a/
src/buffer.c
+++ b/
src/buffer.c
@@
-2288,6
+2288,7
@@
but the contents viewed as characters do change. */)
if (!modified_p && !NILP (Fbuffer_modified_p (Qnil)))
Fset_buffer_modified_p (Qnil);
+#ifdef subprocesses
/* Update coding systems of this buffer's process (if any). */
{
Lisp_Object process;
@@
-2296,6
+2297,7
@@
but the contents viewed as characters do change. */)
if (PROCESSP (process))
setup_process_coding_systems (process);
}
+#endif /* subprocesses */
return flag;
}